home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / internet / sweeper / samples / olecon~1 / framewrk / globals.c < prev    next >
Text File  |  1995-11-25  |  1KB  |  42 lines

  1. //=--------------------------------------------------------------------------=
  2. // Globals.C
  3. //=--------------------------------------------------------------------------=
  4. // Copyright  1995  Microsoft Corporation.  All Rights Reserved.
  5. //
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF 
  7. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO 
  8. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 
  9. // PARTICULAR PURPOSE.
  10. //=--------------------------------------------------------------------------=
  11. //
  12. // contains global variables and strings and the like that just don't fit
  13. // anywhere else.
  14. //
  15. #include "IPServer.H"
  16.  
  17. // support for licensing
  18. //
  19. BOOL g_fMachineHasLicense;
  20. BOOL g_fCheckedForLicense;
  21.  
  22. // our instance handles
  23. //
  24. HINSTANCE    g_hInstance;
  25. HINSTANCE    g_hInstResources;
  26. VARIANT_BOOL g_fHaveLocale;
  27.  
  28. // our global memory allocator and global memory pool
  29. //
  30. HANDLE   g_hHeap;
  31.  
  32. // global parking window for parenting various things.
  33. //
  34. HWND     g_hwndParking;
  35.  
  36. // system information
  37. //
  38. BOOL    g_fSysWin95;                    // we're under Win95 system, not just NT SUR
  39. BOOL    g_fSysWinNT;                    // we're under some form of Windows NT
  40. BOOL    g_fSysWin95Shell;               // we're under Win95 or Windows NT SUR { > 3/51)
  41.  
  42.